home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / comms / thor_2.22 / thor.lha / rexx / examples / HitRate.br < prev    next >
Text File  |  1995-12-18  |  375b  |  23 lines

  1. /*  $VER: HitRate.br 3.1 (07.06.94)
  2.  *
  3.  *  Get hitrate for buffer system
  4.  */
  5.  
  6.     if ~show('p', 'BBSREAD') then do
  7.         address command
  8.             "run >nil: `GetEnv THOR/THORPath`bin/LoadBBSRead"
  9.             "WaitForPort BBSREAD"
  10.     end
  11.  
  12.     options results
  13.     address BBSREAD
  14.  
  15.  
  16.     BUFHITRATE RATES
  17.  
  18.     say 'Global hitrate:' result
  19.     say 'Read hitrate:  ' RATES.READ
  20.     say 'Write hitrate: ' RATES.WRITE
  21.  
  22.     exit
  23.